27. Quiz: Average Pooling
Mean Pooling
QUESTION:
What's the result of a average (or mean) pooling ?
[[[0, 1, 0.5, 10],
[2, 2.5, 1, -8],
[4, 0, 5, 6],
[15, 1, 2, 3]]]
Assume the filter is 2x2 and the stride is 2 for both height and width. The output shape is 2x2x1.
The answering format will be 4 numbers, each separated by a comma, such as: 1,2,3,4.
Answer to 3 decimal places. Work from the top left to the bottom right
SOLUTION:
NOTE: The solutions are expressed in RegEx pattern. Udacity uses these patterns to check the given answer